:root {
  --main-color: #0E2148;
  --second-color: #222222;
  --third-color-heavy: #FFC700;
  --third-color-light: #E6B300;
  --fourth-color: #CC9F00;
}

/* Utility background color classes */
.bg-main {
  background-color: var(--main-color) !important;
}

.bg-second {
  background-color: var(--second-color) !important;
}

.bg-third-heavy {
  background-color: var(--third-color-heavy) !important;
}

.bg-third-light {
  background-color: var(--third-color-light) !important;
}

.bg-fourth {
  background-color: var(--fourth-color) !important;
}

/* Utility text color classes */
.text-main {
  color: var(--main-color) !important;
}

.text-second {
  color: var(--second-color) !important;
}

.text-third-heavy {
  color: var(--third-color-heavy) !important;
}

.text-third-light {
  color: var(--third-color-light) !important;
}

.text-fourth {
  color: var(--fourth-color) !important;
}

body {
  direction: rtl;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Minimum height of the viewport */


}

main {
  flex-grow: 1;
  /* Allows main content to expand and push footer to bottom */
}

/* Optional: Style the footer to stick to the bottom */
footer {
  flex-shrink: 0;
  /* Prevents footer from shrinking */
  width: 100%;
  /* Full width */
}

.footer-rounded {
  border-radius: 100px;
}

* {

  box-sizing: border-box;


}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Regular-1.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Variable-1.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Medium-1.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Semi-Bold-1.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Bold-2.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "MadaniArabic";
  src: url("./web/fonts/alfont_com_Madani-Arabic-Extra-Bold-1.ttf") format("truetype");
  font-weight: 900;
}

html,
body {
  font-family: "MadaniArabic", sans-serif;
  font-weight: 300;
  color: #000000;

}

a {}

/* background gradient */
.gradient {
  padding-top: 100px;
  background: radial-gradient(circle at left top, #ffe99db0 6%, #fffefc 76% 16%),
    radial-gradient(circle at top right, #ffffff 38% 42%, #f9f4e5e0 25%);
}

/* pages top padding because navbar height */
.pages-top-padding {
  padding-top: 100px;
}

.custom-btn {
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
  background-color: var(--third-color-heavy);
  color: var(--second-color);

  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: var(--third-color-light);
  color: white;
  border-bottom: 4px solid var(--third-color-heavy);
  transform: scale(1.01);
}

.navy-btn {
  background-color: var(--main-color);
  color: var(--third-color-light);
  border-bottom: 4px solid #000000;
  transition: all 0.3s ease;
}

.navy-btn:hover {
  background-color: #000000;
  color: white;
  border-bottom: 4px solid var(--main-color);
  transform: scale(1.01);
}
/* ==== */
.muted-price {
  position: relative;
}

.muted-price::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0px;
  width: 100%;
  height: .4px;
  background-color: rgba(0, 0, 0, 0.467);
  transform: translateY(-50%);

}
/* footer style */
footer .social img {
  width: 40px;
  height: 40px;
}

.actions {
  height: fit-content;

  width: 100%;
}



.najez {
  font-size: 12px;
}

.najez a {

  color: var(--third-color-light);

}

/*  */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: none;
  /* hidden by default */
  z-index: 1000;
  width: 45px;
  background-color: var(--third-color-heavy);
  height: 45px;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn:hover {
  background-color: var(--third-color-light);
  color: white;
  transform: scale(1.1);
}

/* ------------------------------------------------------------ */
/* For the entire page */
::-webkit-scrollbar {
  width: 10px;
  /* Width of vertical scrollbar */
  height: 8px;
  /* Height of horizontal scrollbar */
}

/* Track (background of scrollbar) */
::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 10px;
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: var(--third-color-heavy);
  /* Or any color you like */
  border-radius: 10px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--third-color-light);
}
/* whats app plugin  */
.whats-float {
    position: fixed;
    right: 20px;
    bottom: 85px;
    width: 50px;
    height: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    cursor: pointer;
    overflow: hidden;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle;

    /* Pulse effect */
    animation: pulse 2s infinite;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 50px;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align: center;
    font-weight: bolder;
}

/* Hover spin */
.whats-float:hover i {
    transform: rotate(360deg);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
